home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemsw.h < prev    next >
C/C++ Source or Header  |  1993-10-08  |  862b  |  31 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMscrollingwindow
  4. //
  5. //  A GEMscrollingwindow is a GEMwindow which blits to scroll.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMsw_h
  16. #define GEMsw_h
  17.  
  18. #include <gemw.h>
  19.  
  20.  
  21. class GEMscrollingwindow : public GEMwindow
  22. {
  23. public:
  24.     GEMscrollingwindow(GEMactivity& in, const GEMrsc& in, int RSCindex);
  25.     GEMscrollingwindow(GEMactivity& in, const GEMrsc& in, int RSCindex, int Parts);
  26.     GEMscrollingwindow(const GEMscrollingwindow&);
  27.  
  28. };
  29.  
  30. #endif
  31.